Natalie Elphick
Bioinformatician I
Bioinformatics Core
What is your level of experience with coding/data analysis?
.R
.RmdR code with Markdown for text
formatting.Rmd file in RStudio to
explore the basics of how they work:## [1] 1
Which variable name is not valid in R?
10:00
if ("Akita" %in% dog_breeds) {
print("dog_breeds already contains Akita")
} else {
dog_breeds <- c("Akita", dog_breeds)
}## [1] "dog_breeds already contains Akita"
## Already contains this dog
## [1] "German Shepard" "Labrador Retriever" "Akita"
## [4] "Bulldog"